home *** CD-ROM | disk | FTP | other *** search
/ Linux Cubed Series 2: Applications / Linux Cubed Series 2 - Applications.iso / database / postgres / appgen-0.2-a / appgen-0 / AppGEN / include / AppGEN.h
Encoding:
C/C++ Source or Header  |  1996-07-10  |  717 b   |  36 lines

  1. /* WorldClass.h include file, contents copyright 1996 Calico Software Ltd. */
  2.  
  3. #include <stdio.h>
  4. #include <stdlib.h>
  5. #include <string.h>
  6. #include <unistd.h>
  7.  
  8. #define AG_NEW 0
  9. #define AG_FULL 1
  10. #define AG_PARSE 2
  11. #define AG_ERROR 3
  12. #define AG_ADD 0
  13. #define AG_UPDATE 1
  14.  
  15. struct ag_err_struc {
  16.     int error;
  17.     char message[32]; };
  18.  
  19. char ag_buff[256];
  20. int ag_i;
  21. char ag_temp_string[256];
  22.  
  23. struct ag_err_struc ag_errors[64];
  24.  
  25. char *ag_parse(char*, char*, int);
  26. char *ag_encode(char*, char*);
  27. void ag_about();
  28. void ag_get_html(char*);
  29. void ag_jump_module(char*,char*,char*,char*);
  30. void ag_error(char*, char*);
  31. char *ag_itoa(char*, int);
  32. char *ag_sprintf(char*, char*, int);
  33. void ag_sysdate(char[]);
  34. void ag_systime(char[]);
  35.  
  36.